home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 007a / cug315.zip / MSC_HDRS.H < prev    next >
C/C++ Source or Header  |  1990-05-16  |  520b  |  28 lines

  1.  
  2. /* msc_hdrs.h is the usual band of header files for microsoft c progs */
  3.  
  4. #ifndef MSC_HDRS_H
  5. #define MSC_HDRS_H
  6.  
  7.  
  8. #include <ctype.h>
  9.     #undef tolower      /* don't let these be defined as macros */
  10.     #undef toupper
  11. #include <stdio.h>
  12. #include <math.h>
  13. #include <string.h>
  14. #include <fcntl.h>
  15. #include <types.h>
  16. #include <stat.h>
  17. #include <io.h>
  18. #include <stdlib.h>
  19. #include <conio.h>
  20. #include <dos.h>
  21. #include <time.h>
  22. #include <process.h>
  23. #include <memory.h>
  24. #include <malloc.h>
  25.  
  26. #endif
  27.  
  28.